操作日志新增消耗时间属性

This commit is contained in:
RuoYi
2023-02-16 11:57:40 +08:00
parent e26b65ca31
commit 00f2db99d8
7 changed files with 47 additions and 14 deletions

View File

@ -428,6 +428,7 @@ create table sys_oper_log (
status int(1) default 0 comment '操作状态0正常 1异常',
error_msg varchar(2000) default '' comment '错误消息',
oper_time datetime comment '操作时间',
cost_time bigint(20) default 0 comment '消耗时间',
primary key (oper_id)
) engine=innodb auto_increment=100 comment = '操作日志记录';