From 028b7c32592069457eda49e51d29988b7bb7308a Mon Sep 17 00:00:00 2001 From: tony <846249920@qq.com> Date: Thu, 23 Feb 2023 23:35:30 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20sys=5Foper=5Flog=20=E6=96=B0=E5=A2=9Eco?= =?UTF-8?q?st=5Ftime?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/tony-flowable.sql | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/sql/tony-flowable.sql b/sql/tony-flowable.sql index e8ed3c53..6b21d0f6 100644 --- a/sql/tony-flowable.sql +++ b/sql/tony-flowable.sql @@ -2473,16 +2473,10 @@ CREATE TABLE `sys_oper_log` ( `status` int(1) DEFAULT '0' COMMENT '操作状态(0正常 1异常)', `error_msg` varchar(2000) DEFAULT '' COMMENT '错误消息', `oper_time` datetime DEFAULT NULL COMMENT '操作时间', + cost_time bigint(20) DEFAULT 0 COMMENT '消耗时间', PRIMARY KEY (`oper_id`) ) ENGINE=InnoDB AUTO_INCREMENT=166 DEFAULT CHARSET=utf8mb4 COMMENT='操作日志记录'; --- ---------------------------- --- Records of sys_oper_log --- ---------------------------- -BEGIN; -INSERT INTO `sys_oper_log` (`oper_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`) VALUES (165, '代码生成', 3, 'com.ruoyi.generator.controller.GenController.remove()', 'DELETE', 1, 'admin', NULL, '/tool/gen/1,2', '127.0.0.1', '内网IP', '{}', '{\"msg\":\"操作成功\",\"code\":200}', 0, NULL, '2022-12-28 16:38:06'); -COMMIT; - -- ---------------------------- -- Table structure for sys_post -- ----------------------------