视频图片儿分析模型。

This commit is contained in:
spllzh
2025-10-12 09:37:43 +08:00
parent b047a3be90
commit 5f2c952a6e
33 changed files with 1935 additions and 104 deletions

View File

@@ -0,0 +1,16 @@
package com.rj.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.rj.entity.VideoImageAnalysis;
import org.apache.ibatis.annotations.Mapper;
/**
* AI视频图像分析记录Mapper接口
*
* @author 系统生成
* @date 2025/1/30
*/
@Mapper
public interface VideoImageAnalysisMapper extends BaseMapper<VideoImageAnalysis> {
}