diff --git a/src/apis/model/biz/entity/log/ndm-call-log.ts b/src/apis/model/biz/entity/log/ndm-call-log.ts index 05f1db9..b181468 100644 --- a/src/apis/model/biz/entity/log/ndm-call-log.ts +++ b/src/apis/model/biz/entity/log/ndm-call-log.ts @@ -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;