文字转语音

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,15 @@
package com.rj.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.rj.entity.TtsRequestLog;
import org.apache.ibatis.annotations.Mapper;
/**
* TTS请求日志Mapper
*
* @author rj
* @date 2025-01-02
*/
@Mapper
public interface TtsRequestLogMapper extends BaseMapper<TtsRequestLog> {
}