音频分段逻辑的代码架构

This commit is contained in:
zhonghua1
2025-12-19 08:48:05 +08:00
parent 406f7d692b
commit db64ed63a5
10 changed files with 602 additions and 18 deletions

View File

@@ -0,0 +1,16 @@
package com.rj.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.rj.entity.AudioManagementSegments;
/**
* <p>
* 录音分段管理表 Mapper 接口
* </p>
*
* 对应表audio_management_segments
*/
public interface AudioManagementSegmentsMapper extends BaseMapper<AudioManagementSegments> {
}