From c81847ea0f55aa36a75329d258689d5aa5f2881d Mon Sep 17 00:00:00 2001 From: yangsy Date: Sun, 4 Jan 2026 15:23:14 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E4=B8=BANdmVimpLog=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=AD=97=E6=AE=B5=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apis/model/biz/entity/log/ndm-vimp-log.ts | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/src/apis/model/biz/entity/log/ndm-vimp-log.ts b/src/apis/model/biz/entity/log/ndm-vimp-log.ts index ad17253..d55ecf5 100644 --- a/src/apis/model/biz/entity/log/ndm-vimp-log.ts +++ b/src/apis/model/biz/entity/log/ndm-vimp-log.ts @@ -2,18 +2,57 @@ import type { BaseModel, ReduceForSaveVO, ReduceForUpdateVO, ReduceForPageQuery import type { Nullable } from '@/types'; export interface NdmVimpLog extends BaseModel { + /** + * 请求IP + */ requestIp: string; + /** + * 操作内容 + */ description: string; + /** + * 类路径 + */ classPath: string; + /** + * 函数名 + */ methodName: string; + /** + * 起始时间 + */ startTime: string; + /** + * 结束时间 + */ endTime: string; + /** + * 消耗时间 + */ consumedTime: string; + /** + * 操作参数 + */ params: string; + /** + * 操作结果 + */ result: string; + /** + * 请求类型 + */ httpMethod: string; + /** + * 请求用户 + */ userId: string; + /** + * 日志类型 + */ logType: number; + /** + * 目标国标码 + */ targetCode: string; }