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; }