From c6d8ea02ade42a78e9f4a2304e8e1c5f67853d91 Mon Sep 17 00:00:00 2001 From: wujingjing <gersonwu@qq.com> Date: 星期四, 06 三月 2025 16:17:06 +0800 Subject: [PATCH] 创建工单 --- src/components/chat/model/types.ts | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/components/chat/model/types.ts b/src/components/chat/model/types.ts index 0b95ba0..3102309 100644 --- a/src/components/chat/model/types.ts +++ b/src/components/chat/model/types.ts @@ -53,10 +53,20 @@ createTime?: string; }; +/** + * mode 灞曠ず鍐呭 + */ +export type ModeContent = { + type: string; + mode: 'create_work_order'; + value: any; +}; + export interface ChatMessage { historyId: string; role: RoleEnum; content?: ChatContent; + modeContent?: ModeContent; state?: null | '1' | '0'; createTime?: string; stepGroup?: { value: StepItem[]; isShow: boolean }[]; -- Gitblit v1.9.3