package com.ruoyi.inspect.mapper;
|
|
import java.util.HashMap;
|
import java.util.List;
|
import com.ruoyi.inspect.domain.ArdVideoInspectRecord;
|
|
/**
|
* 视频巡检记录Mapper接口
|
*
|
* @author ruoyi
|
* @date 2023-05-30
|
*/
|
public interface ArdVideoInspectRecordMapper
|
{
|
/**
|
* 查询视频巡检记录
|
*
|
* @param id 视频巡检记录主键
|
* @return 视频巡检记录
|
*/
|
public ArdVideoInspectRecord selectArdVideoInspectRecordById(String id);
|
|
/**
|
* 查询视频巡检记录列表
|
*
|
* @param ardVideoInspectRecord 视频巡检记录
|
* @return 视频巡检记录集合
|
*/
|
public List<ArdVideoInspectRecord> selectArdVideoInspectRecordList(ArdVideoInspectRecord ardVideoInspectRecord);
|
|
@SuppressWarnings("MybatisXMapperMethodInspection")
|
public List<HashMap> selectArdVideoInspectRecordListByStartTime(ArdVideoInspectRecord ardVideoInspectRecord);
|
|
/**
|
* 新增视频巡检记录
|
*
|
* @param ardVideoInspectRecord 视频巡检记录
|
* @return 结果
|
*/
|
public int insertArdVideoInspectRecord(ArdVideoInspectRecord ardVideoInspectRecord);
|
|
/**
|
* 修改视频巡检记录
|
*
|
* @param ardVideoInspectRecord 视频巡检记录
|
* @return 结果
|
*/
|
public int updateArdVideoInspectRecord(ArdVideoInspectRecord ardVideoInspectRecord);
|
|
/**
|
* 删除视频巡检记录
|
*
|
* @param id 视频巡检记录主键
|
* @return 结果
|
*/
|
public int deleteArdVideoInspectRecordById(String id);
|
|
/**
|
* 批量删除视频巡检记录
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteArdVideoInspectRecordByIds(String[] ids);
|
@SuppressWarnings("MybatisXMapperMethodInspection")
|
List selectArdVideoInspectRecordCountByStartMonth(String startMonth);
|
}
|