docs: sys_oper_log 新增cost_time

rf
tony 2023-02-23 23:37:29 +08:00
parent 028b7c3259
commit 90fbaee249
1 changed files with 1 additions and 1 deletions

View File

@ -2473,7 +2473,7 @@ 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 '消耗时间',
`cost_time` bigint(20) DEFAULT 0 COMMENT '消耗时间',
PRIMARY KEY (`oper_id`)
) ENGINE=InnoDB AUTO_INCREMENT=166 DEFAULT CHARSET=utf8mb4 COMMENT='操作日志记录';