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