package com.dy.pipIrrGlobal.daoRm; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoRm.RmTimingReportLast; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * @author ZhuBaoMin * @date 2024-06-14 15:17 * @LastEditTime 2024-06-14 15:17 * @Description */ @Mapper public interface RmTimingReportLastMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int insert(RmTimingReportLast record); int insertSelective(RmTimingReportLast record); RmTimingReportLast selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(RmTimingReportLast record); int updateByPrimaryKey(RmTimingReportLast record); /** * 根据阀控器地址获取定点上报最新数据 * @param intakeId * @return */ List getRmTimingReportLast(Long intakeId); }