This commit is contained in:
2025-12-22 11:24:30 +08:00
parent 1f37db80d8
commit 85e4513284
19 changed files with 1626 additions and 2 deletions

View File

@@ -185,8 +185,8 @@ CREATE TABLE workcase.tb_meeting_transcription(
content_raw TEXT DEFAULT NULL, -- 原始转录结果(含标点前)
language VARCHAR(10) DEFAULT 'zh-CN', -- 语言zh-CN en-US等
confidence NUMERIC(3,2) DEFAULT NULL, -- 识别置信度0-1
start_time TIMESTAMPTZ NOT NULL, -- 语音开始时间
end_time TIMESTAMPTZ NOT NULL, -- 语音结束时间
speech_start_time TIMESTAMPTZ NOT NULL, -- 语音开始时间
speech_end_time TIMESTAMPTZ NOT NULL, -- 语音结束时间
duration_ms INTEGER NOT NULL, -- 语音时长(毫秒)
audio_url VARCHAR(500) DEFAULT NULL, -- 音频片段URL可选
segment_index INTEGER NOT NULL DEFAULT 0, -- 片段序号(按时间排序)