音频分段逻辑的代码架构
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.rj.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.rj.entity.AudioManagementSegments;
|
||||
import com.rj.mapper.AudioManagementSegmentsMapper;
|
||||
import com.rj.service.IAudioManagementSegmentsService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 录音分段管理表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* 对应表:audio_management_segments
|
||||
*/
|
||||
@Service
|
||||
public class AudioManagementSegmentsServiceImpl
|
||||
extends ServiceImpl<AudioManagementSegmentsMapper, AudioManagementSegments>
|
||||
implements IAudioManagementSegmentsService {
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user