package com.dy.pipIrrGlobal.daoAllRound; 
 | 
  
 | 
import com.baomidou.mybatisplus.core.mapper.BaseMapper; 
 | 
import com.dy.pipIrrGlobal.voAllRound.VoArIntakeRemote; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
import org.apache.ibatis.annotations.Param; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * @Author: liurunyu 
 | 
 * @Date: 2025/1/22 09:45 
 | 
 * @Description 
 | 
 */ 
 | 
@Mapper 
 | 
public interface Ar4RemoteMapper extends BaseMapper<Object> { 
 | 
  
 | 
    /** 
 | 
     * 查询取水口最新报警信息 
 | 
     * @param intakeId 
 | 
     * @return 
 | 
     */ 
 | 
    List<VoArIntakeRemote> alarmLastInfo(@Param("intakeId") Long intakeId) ; 
 | 
  
 | 
    /** 
 | 
     * 查询取水口最新开关阀信息 
 | 
     * @param intakeId 
 | 
     * @return 
 | 
     */ 
 | 
    List<VoArIntakeRemote> openCloseValveLastInfo(@Param("intakeId") Long intakeId) ; 
 | 
  
 | 
    /** 
 | 
     * 查询取水口最新漏损信息 
 | 
     * @param intakeId 
 | 
     * @return 
 | 
     */ 
 | 
    List<VoArIntakeRemote> lossLastInfo(@Param("intakeId") Long intakeId) ; 
 | 
  
 | 
  
 | 
} 
 |