From a00c736f33de14f2e959410215c7ec8efa591e4d Mon Sep 17 00:00:00 2001 From: yangsy Date: Sun, 4 Jan 2026 15:29:20 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E4=B8=BANdmCallLog=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=AD=97=E6=AE=B5=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apis/model/biz/entity/log/ndm-call-log.ts | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) 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;