feat(多数据源): 新增字段

This commit is contained in:
gx_ma
2025-04-27 11:51:39 +08:00
parent 5b6ec185c4
commit 3500faf044
5 changed files with 18 additions and 5 deletions

View File

@@ -3368,7 +3368,8 @@ CREATE TABLE "sys_oper_log" (
"json_result" NCLOB,
"status" NUMBER(11),
"error_msg" NCLOB,
"oper_time" DATE
"oper_time" DATE,
"cost_time" NUMBER(20) DEFAULT 0
)
;
COMMENT ON COLUMN "sys_oper_log"."oper_id" IS '操作日志ID';
@@ -3387,6 +3388,7 @@ COMMENT ON COLUMN "sys_oper_log"."json_result" IS '返回参数';
COMMENT ON COLUMN "sys_oper_log"."status" IS '操作状态0正常 1异常';
COMMENT ON COLUMN "sys_oper_log"."error_msg" IS '错误消息';
COMMENT ON COLUMN "sys_oper_log"."oper_time" IS '操作时间';
COMMENT ON COLUMN "sys_oper_log"."cost_time" IS '消耗时间';
COMMENT ON TABLE "sys_oper_log" IS '操作日志记录';
-- ----------------------------