录音管理功能联调

This commit is contained in:
spllzh
2025-10-25 23:07:07 +08:00
parent 6801f06db5
commit c14476dc92
34 changed files with 1254 additions and 58 deletions

View File

@@ -49,4 +49,12 @@ public interface IFileUploadService {
* @return 是否存在
*/
boolean audioFileExists(String audioId);
/**
* 使用MinIO上传音频文件
* @param file 音频文件
* @param audioId 录音ID
* @return 上传结果
*/
Map<String, Object> uploadAudioFileToMinIO(MultipartFile file, String audioId) throws IOException;
}