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 "public"."sys_oper_log" (
"json_result" varchar(2000),
"status" int4,
"error_msg" varchar(2000),
"oper_time" timestamp
"oper_time" timestamp,
"cost_time" int8 default 0
)
;
COMMENT ON COLUMN "public"."sys_oper_log"."oper_id" IS '操作日志ID';
@@ -3387,6 +3388,7 @@ COMMENT ON COLUMN "public"."sys_oper_log"."json_result" IS '返回参数';
COMMENT ON COLUMN "public"."sys_oper_log"."status" IS '操作状态0正常 1异常';
COMMENT ON COLUMN "public"."sys_oper_log"."error_msg" IS '错误消息';
COMMENT ON COLUMN "public"."sys_oper_log"."oper_time" IS '操作时间';
COMMENT ON COLUMN "public"."sys_oper_log"."cost_time" IS '消耗时间';
COMMENT ON TABLE "public"."sys_oper_log" IS '操作日志记录';
-- ----------------------------