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

@@ -7750,7 +7750,8 @@ CREATE TABLE [dbo].[sys_oper_log] (
[json_result] nvarchar(2000) NULL,
[status] int NULL,
[error_msg] nvarchar(2000) NULL,
[oper_time] datetime2 NULL
[oper_time] datetime2 NULL,
[cost_time] int default 0
)
GO
@@ -7866,6 +7867,13 @@ EXEC sp_addextendedproperty
'COLUMN', N'oper_time'
GO
EXEC sp_addextendedproperty
'MS_Description', N'消耗时间',
'SCHEMA', N'dbo',
'TABLE', N'sys_oper_log',
'COLUMN', N'cost_time'
GO
EXEC sp_addextendedproperty
'MS_Description', N'操作日志记录',
'SCHEMA', N'dbo',