From d08140f5372cd428326a5fee0ac59fb26c3a762d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B5=B7=E9=BE=99?= Date: Thu, 14 Aug 2025 20:42:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E6=8E=A5=E5=8F=A3=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E5=90=8D=E7=A7=B0=EF=BC=8C=E5=B0=86video=5Fid?= =?UTF-8?q?=E6=9B=B4=E6=94=B9=E4=B8=BAshot=5Fid=E4=BB=A5=E4=BF=9D=E6=8C=81?= =?UTF-8?q?=E4=B8=80=E8=87=B4=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/video_flow.ts | 4 ++-- app/service/usecase/ShotEditUsecase.ts | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/api/video_flow.ts b/api/video_flow.ts index afbdb94..85ec98b 100644 --- a/api/video_flow.ts +++ b/api/video_flow.ts @@ -300,7 +300,7 @@ export const applyRoleToShots = async (request: { /** 项目ID */ project_id: string; /** 分镜ID */ - shot_id: string; + shot_id: string; /** 任务状态 */ status: string; /** 状态描述 */ @@ -865,7 +865,7 @@ export const updateShotPrompt = async (request: { /** 项目ID */ project_id: string; /** 分镜ID */ - video_id: string; + shot_id: string; /** 镜头描述 */ shot_descriptions: task_item; }): Promise> => { diff --git a/app/service/usecase/ShotEditUsecase.ts b/app/service/usecase/ShotEditUsecase.ts index 29e5066..6f53a10 100644 --- a/app/service/usecase/ShotEditUsecase.ts +++ b/app/service/usecase/ShotEditUsecase.ts @@ -148,7 +148,8 @@ export class VideoSegmentEditUseCase { const response = await updateShotPrompt({ project_id, - video_id:shot_id, + shot_id, + shot_id, shot_descriptions, });