文字转语音

This commit is contained in:
spllzh
2025-10-04 19:52:06 +08:00
parent 24c00c22ab
commit 06730b656e
51 changed files with 5157 additions and 8 deletions

View File

@@ -0,0 +1,28 @@
package com.rj.service;
import com.rj.entity.TtsRequestLog;
/**
* TTS请求日志服务接口
*
* @author rj
* @date 2025-01-02
*/
public interface ITtsRequestLogService {
/**
* 保存TTS请求日志
*
* @param log 请求日志
* @return 是否保存成功
*/
boolean saveTtsRequestLog(TtsRequestLog log);
/**
* 根据ID查询请求日志
*
* @param id 日志ID
* @return 请求日志
*/
TtsRequestLog getTtsRequestLogById(String id);
}