docs: 为NdmVimpLog结构添加字段注释

This commit is contained in:
yangsy
2026-01-04 15:23:14 +08:00
parent 080759c544
commit c81847ea0f

View File

@@ -2,18 +2,57 @@ import type { BaseModel, ReduceForSaveVO, ReduceForUpdateVO, ReduceForPageQuery
import type { Nullable } from '@/types'; import type { Nullable } from '@/types';
export interface NdmVimpLog extends BaseModel { export interface NdmVimpLog extends BaseModel {
/**
* 请求IP
*/
requestIp: string; requestIp: string;
/**
* 操作内容
*/
description: string; description: string;
/**
* 类路径
*/
classPath: string; classPath: string;
/**
* 函数名
*/
methodName: string; methodName: string;
/**
* 起始时间
*/
startTime: string; startTime: string;
/**
* 结束时间
*/
endTime: string; endTime: string;
/**
* 消耗时间
*/
consumedTime: string; consumedTime: string;
/**
* 操作参数
*/
params: string; params: string;
/**
* 操作结果
*/
result: string; result: string;
/**
* 请求类型
*/
httpMethod: string; httpMethod: string;
/**
* 请求用户
*/
userId: string; userId: string;
/**
* 日志类型
*/
logType: number; logType: number;
/**
* 目标国标码
*/
targetCode: string; targetCode: string;
} }