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 }[];