fuliqi
2024-09-30 b5df1cee65f3e9dcf554efcd3f1642a8c79d1e76
ycl-server/src/main/java/com/ycl/platform/mapper/CheckIndexVideoMapper.java
@@ -1,10 +1,12 @@
package com.ycl.platform.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ycl.platform.domain.dto.ImageResourceDTO;
import com.ycl.platform.domain.entity.CheckIndexVideo;
import com.ycl.platform.domain.query.DashboardQuery;
import org.apache.ibatis.annotations.MapKey;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
@@ -32,6 +34,13 @@
     */
    public List<CheckIndexVideo> selectCheckIndexVideoList(CheckIndexVideo checkIndexVideo);
    /**
     * 考核模板定时任务查询视频指标概率数据列表
     *
     * @param checkIndexVideo 视频指标概率数据
     * @return 视频指标概率数据集合
     */
    public List<CheckIndexVideo> getCheckIndexVideoList(CheckIndexVideo checkIndexVideo);
    /**
     * 新增视频指标概率数据
     *
@@ -83,6 +92,5 @@
     * 查询每个部门最新数据
     * @return 数据Map
     */
    @MapKey(value = "deptId")
    Map<Long, CheckIndexVideo> selectLastOneByDept();
    List<ImageResourceDTO> selectLastOneByDept();
}