update 优化 将Log记录异常长度改为5000

This commit is contained in:
疯狂的狮子Li
2024-11-14 16:23:52 +08:00
parent 41240fc415
commit b64ac8d7f6
4 changed files with 4 additions and 4 deletions

View File

@@ -557,7 +557,7 @@ create table sys_oper_log (
oper_param varchar(5000) default '' comment '请求参数',
json_result varchar(5000) default '' comment '返回参数',
status int(1) default 0 comment '操作状态0正常 1异常',
error_msg varchar(2000) default '' comment '错误消息',
error_msg varchar(5000) default '' comment '错误消息',
oper_time datetime comment '操作时间',
cost_time bigint(20) default 0 comment '消耗时间',
primary key (oper_id),