wujingjing
2025-03-06 c6d8ea02ade42a78e9f4a2304e8e1c5f67853d91
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 }[];