| package com.dy.pipIrrGlobal.daoRm; | 
|   | 
| import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
| import com.dy.pipIrrGlobal.pojoRm.RmTimingReportHistory; | 
| import com.dy.pipIrrGlobal.voRm.VoTiming; | 
| import org.apache.ibatis.annotations.Mapper; | 
|   | 
| import java.util.List; | 
| import java.util.Map; | 
|   | 
| /** | 
|  * @author ZhuBaoMin | 
|  * @date 2024-06-14 14:43 | 
|  * @LastEditTime 2024-06-14 14:43 | 
|  * @Description | 
|  */ | 
|   | 
| @Mapper | 
| public interface RmTimingReportHistoryMapper extends BaseMapper<RmTimingReportHistory> { | 
|     int deleteByPrimaryKey(Long id); | 
|   | 
|     int insert(RmTimingReportHistory record); | 
|   | 
|     int insertSelective(RmTimingReportHistory record); | 
|   | 
|     RmTimingReportHistory selectByPrimaryKey(Long id); | 
|   | 
|     int updateByPrimaryKeySelective(RmTimingReportHistory record); | 
|   | 
|     int updateByPrimaryKey(RmTimingReportHistory record); | 
|   | 
|     /** | 
|      * 根据指定条件获取定时报历史记录数量 | 
|      * @param params | 
|      * @return | 
|      */ | 
|     Long getTimingReportsCount_history(Map<?, ?> params); | 
|   | 
|     /** | 
|      * 根据指定条件获取定时报历史记录 | 
|      * @param params | 
|      * @return | 
|      */ | 
|     List<VoTiming> getTimingReports_history(Map<?, ?> params); | 
| } |