docs: 为NdmCallLog结构添加字段注释
This commit is contained in:
@@ -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>;
|
||||
|
||||
Reference in New Issue
Block a user