调整 音频合成, 头衔监测

This commit is contained in:
spllzh
2025-10-06 23:16:59 +08:00
parent 20378e8115
commit 76dedb657a
36 changed files with 1732 additions and 12 deletions

View File

@@ -42,6 +42,8 @@ public interface CustomerProfileAnalysisMapper extends BaseMapper<CustomerProfil

View File

@@ -0,0 +1,15 @@
package com.rj.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.rj.entity.VideoSynthesisLog;
import org.apache.ibatis.annotations.Mapper;
/**
* 视频合成日志Mapper接口
*
* @author rj
* @date 2025-01-02
*/
@Mapper
public interface VideoSynthesisLogMapper extends BaseMapper<VideoSynthesisLog> {
}