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

@@ -106,6 +106,44 @@ export interface TbMeetingParticipantDTO extends BaseDTO {
deviceInfo?: string
}
/**
* 会议转录记录表数据对象DTO
*/
export interface TbMeetingTranscriptionDTO extends BaseDTO {
/** 转录记录ID */
transcriptionId?: string
/** 会议ID */
meetingId?: string
/** 说话人ID */
speakerId?: string
/** 说话人名称 */
speakerName?: string
/** 说话人类型guest-来客 agent-客服 */
speakerType?: string
/** 转录文本内容 */
content?: string
/** 原始转录结果 */
contentRaw?: string
/** 语言 */
language?: string
/** 识别置信度0-1 */
confidence?: number
/** 语音开始时间 */
speechStartTime?: string
/** 语音结束时间 */
speechEndTime?: string
/** 语音时长(毫秒) */
durationMs?: number
/** 音频片段URL */
audioUrl?: string
/** 片段序号 */
segmentIndex?: number
/** 是否最终结果 */
isFinal?: boolean
/** 服务提供商 */
serviceProvider?: string
}
// ==================== VO ====================
/**