From a38be2c56853e0a9dc02ba729ae9af0a39a8c5b4 Mon Sep 17 00:00:00 2001 From: duxingchen Date: Wed, 12 Aug 2026 16:05:05 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20TaskRecordResponse=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E5=8C=B9=E9=85=8D=E5=90=8E=E7=AB=AFschema=20=E2=80=94=20?= =?UTF-8?q?=E8=A1=A5=E5=85=A8images=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/types/api.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/frontend/src/types/api.ts b/frontend/src/types/api.ts index f5bf67c..3df72bb 100644 --- a/frontend/src/types/api.ts +++ b/frontend/src/types/api.ts @@ -43,12 +43,11 @@ export interface TaskResponse extends TaskSummary { } export interface TaskRecordResponse { - id: string; + id: number; task_id: string; - action: string; - operator_id: string | null; - note: string | null; - created_at: string; + remark: string | null; + images: string[]; + created_at: string | null; } // ---- ζ“δ½œε“εΊ” ----