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

This commit is contained in:
yangsy
2026-01-04 15:29:20 +08:00
parent 85a6b73473
commit a00c736f33

View File

@@ -2,11 +2,38 @@ import type { BaseModel, ReduceForPageQuery, ReduceForSaveVO, ReduceForUpdateVO
import type { Nullable } from '@/types';
export interface NdmCallLog extends BaseModel {
/**
* 调用者国标码
*/
sourceGbId: string;
/**
* 用户所属类别
*/
sourceType: string;
/**
* 被调用设备国标码
*/
targetGbId: string;
/**
* 被调用设备名称
*/
targetName: string;
/**
* 调用方法
*/
method: string;
/**
* message类型
*/
messageType: string;
/**
* 操作类型
*/
cmdType: string;
/**
* 日志类型
*/
logType: string;
}
export type NdmCallLogResultVO = Nullable<NdmCallLog>;