fuliqi
2024-08-03 745663af3e1398aae07c1dfbd026acfc11305e1f
ycl-server/src/main/java/com/ycl/platform/mapper/CheckIndexVideoMapper.java
@@ -1,20 +1,22 @@
package com.ycl.platform.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ycl.platform.domain.entity.CheckIndexFace;
import com.ycl.platform.domain.entity.CheckIndexVideo;
import java.util.List;
/**
 * 视频指标概率数据Mapper接口
 *
 *
 * @author ruoyi
 * @date 2024-04-29
 */
public interface CheckIndexVideoMapper
public interface CheckIndexVideoMapper extends BaseMapper<CheckIndexVideo>
{
    /**
     * 查询视频指标概率数据
     *
     *
     * @param id 视频指标概率数据主键
     * @return 视频指标概率数据
     */
@@ -22,7 +24,7 @@
    /**
     * 查询视频指标概率数据列表
     *
     *
     * @param checkIndexVideo 视频指标概率数据
     * @return 视频指标概率数据集合
     */
@@ -30,7 +32,7 @@
    /**
     * 新增视频指标概率数据
     *
     *
     * @param checkIndexVideo 视频指标概率数据
     * @return 结果
     */
@@ -38,7 +40,7 @@
    /**
     * 修改视频指标概率数据
     *
     *
     * @param checkIndexVideo 视频指标概率数据
     * @return 结果
     */
@@ -46,7 +48,7 @@
    /**
     * 删除视频指标概率数据
     *
     *
     * @param id 视频指标概率数据主键
     * @return 结果
     */
@@ -54,9 +56,11 @@
    /**
     * 批量删除视频指标概率数据
     *
     *
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteCheckIndexVideoByIds(Long[] ids);
    List<CheckIndexVideo> selectToday(String date);
}