zhangnaisong
2024-07-06 06842b9c367083c3bf77b8b54a1e1a32b68a2e5e
ard-work/src/main/java/com/ruoyi/inspect/mapper/ArdVideoInspectRecordMapper.java
@@ -1,7 +1,9 @@
package com.ruoyi.inspect.mapper;
import java.util.HashMap;
import java.util.List;
import com.ruoyi.inspect.domain.ArdVideoInspectRecord;
import org.apache.ibatis.annotations.Param;
/**
 * 视频巡检记录Mapper接口
@@ -26,6 +28,10 @@
     * @return 视频巡检记录集合
     */
    public List<ArdVideoInspectRecord> selectArdVideoInspectRecordList(ArdVideoInspectRecord ardVideoInspectRecord);
    @SuppressWarnings("MybatisXMapperMethodInspection")
    public List<HashMap> selectArdVideoInspectRecordListByStartTime(ArdVideoInspectRecord ardVideoInspectRecord);
    public List<HashMap> selectTaskRecordByStartTime(@Param("taskId") String taskId,@Param("startTime") String startTime);
    /**
     * 新增视频巡检记录
@@ -58,4 +64,6 @@
     * @return 结果
     */
    public int deleteArdVideoInspectRecordByIds(String[] ids);
    @SuppressWarnings("MybatisXMapperMethodInspection")
    List selectArdVideoInspectRecordCountByStartMonth(String startMonth);
}